home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Amos / AMOSList-0497 / AMOSLIST / 000166_amos-request@svcs1.digex.net_Sun Apr 20 06:45:51 1997.msg < prev    next >
Text File  |  1998-06-24  |  3KB  |  65 lines

  1. Received: from svcs1.digex.net (svcs1.digex.net [204.91.197.224])
  2.     by mail1.access.digex.net (8.8.5/8.8.5) with ESMTP id GAA10997
  3.     for <mcox@access.digex.net>; Sun, 20 Apr 1997 06:45:49 -0400 (EDT)
  4. Received: (from daemon@localhost)
  5.     by svcs1.digex.net (8.8.5/8.8.5) id FAA02341
  6.     for amos-out; Sun, 20 Apr 1997 05:00:10 -0400 (EDT)
  7. Received: from mail2.access.digex.net (mail2.access.digex.net [205.197.247.3])
  8.     by svcs1.digex.net (8.8.5/8.8.5) with ESMTP id FAA02338
  9.     for <amos-list@svcs1.digex.net>; Sun, 20 Apr 1997 05:00:09 -0400 (EDT)
  10. Received: from relay-7.mail.demon.net (relay-7.mail.demon.net [194.217.242.9])
  11.     by mail2.access.digex.net (8.8.5/8.8.5) with SMTP id FAA13240
  12.     for <amos-list@access.digex.net>; Sun, 20 Apr 1997 05:00:04 -0400 (EDT)
  13. Received: from stevewil.demon.co.uk ([158.152.226.72]) by relay-5.mail.demon.net
  14.            id aa0516521; 20 Apr 97 9:55 BST
  15. Date: 20 Apr 97 09:52:11 +0000
  16. From: Stephen W Williams <stevewil@stevewil.demon.co.uk>
  17. Subject: Printing to file
  18. To: amos-list@access.digex.net
  19. Message-ID: <1597.7049T592T551@stevewil.demon.co.uk>
  20. MIME-Version: 1.0
  21. Content-type: text/plain; charset=us-ascii
  22. Content-transfer-encoding: 7bit
  23. X-Mailer: THOR 2.4 (Amiga;TCP/IP)
  24. Status: RO
  25. X-Status: 
  26.  
  27. To All 
  28. Can someone help me with a small but irritating problem I am having
  29. with a little prog I am trying to get working.
  30. What I want to do is use AmosPro to create a file in Ram called Datapath
  31. and then execute it with Amiga dos.
  32. If you look at the example below it should create a file called Datapath
  33. containing "CD workbench:data".
  34. Now the hard part, the file should change the current directory to 
  35. workbench:data (which does exist on my system).
  36. But What I get is "object not found  CD failed returncode 20",
  37. I think I have found why it doesn't run because there seems to be extra
  38.  characters at the end of the file, I.e. the example below should create a file 
  39. 18 characters long including Return
  40. But the actual file is 20 long and its these extra characters that cause the 
  41. problem, If I load the file into a Text Editor and delete the invisible 
  42. characters at the end and resave the file  it runs fine.
  43. So the Question how do I create a file without the extra characters?
  44. I have tryed CHR$(13)/CHR$(10) After A$ but no luck. 
  45. And I can remove any extra characters easily inside Amos.
  46.  
  47. a$="workbench:data"
  48. C$="CD "
  49. A$=C$+A$
  50. Open Out 3,"Ram:Datapath"
  51. Print #3,A$
  52. Print #3,Chr$(13)
  53. Close 3
  54.  
  55. Any help would be appreciated
  56. Thanks Steve.
  57. end
  58. --
  59. ======== Stephen W Williams - stevewil@stevewil.demon.co.uk ========
  60. *AMIGA A1200 HD 2+24mb Ram - Blizzard 1230IV with SCSI - Ext Floppy*
  61. * Microvitec GPM1701 17" Monitor - SupraFAXmodem288 - SurfSquirrel *
  62. *  HiQ PowerStation-80+720Mb Quantum SCSI HDs ZIP Drive with AFS   *
  63. *     X2 CD Rom - HP DeskJet 693C - Power Mono Hand Scanner        *
  64. --
  65.